- memcmp
int memcmp(const(void*) str1, const(void*) str2, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- memcpy
void* memcpy(void* dest, const(void*) src, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- memmove
void* memmove(void* s1, void* s2, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- memset
void* memset(void* str, int c, size_t n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strchr
const(char)* strchr(const(char)* str, char c)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strchr
const(char)* strchr(const(char)* str, char c)
Undocumented in source. Be warned that the author may not have intended to support it.
- strcmp
int strcmp(char* str1, char* str2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strcpy
char* strcpy(char* destination, char* source)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strerror
const(char)* strerror(int errnum)
Undocumented in source. Be warned that the author may not have intended to support it.
- strerror
const(char)* strerror(int errnum)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strerror_r
int strerror_r(int errnum, char* buf, size_t buflen)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strlen
size_t strlen(const(char)* str)
Undocumented in source. Be warned that the author may not have intended to support it.
- strlen
size_t strlen(const(char*) str)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strncmp
int strncmp(const(char)* str1, const(char)* str2, size_t num)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- strstr
char* strstr(char* haystack, char* needle)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- memcmp (from object)
public
import object : memcpy, memset, memcmp, memmove;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- memcpy (from object)
public
import object : memcpy, memset, memcmp, memmove;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- memmove (from object)
public
import object : memcpy, memset, memcmp, memmove;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- memset (from object)
public
import object : memcpy, memset, memcmp, memmove;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.